home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / binutils / nlmheader.c < prev    next >
C/C++ Source or Header  |  1994-10-22  |  48KB  |  1,904 lines

  1.  
  2. /*  A Bison parser, made from ./nlmheader.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    CHECK    258
  8. #define    CODESTART    259
  9. #define    COPYRIGHT    260
  10. #define    CUSTOM    261
  11. #define    DATE    262
  12. #define    DEBUG    263
  13. #define    DESCRIPTION    264
  14. #define    EXIT    265
  15. #define    EXPORT    266
  16. #define    FLAG_ON    267
  17. #define    FLAG_OFF    268
  18. #define    FULLMAP    269
  19. #define    HELP    270
  20. #define    IMPORT    271
  21. #define    INPUT    272
  22. #define    MAP    273
  23. #define    MESSAGES    274
  24. #define    MODULE    275
  25. #define    MULTIPLE    276
  26. #define    OS_DOMAIN    277
  27. #define    OUTPUT    278
  28. #define    PSEUDOPREEMPTION    279
  29. #define    REENTRANT    280
  30. #define    SCREENNAME    281
  31. #define    SHARELIB    282
  32. #define    STACK    283
  33. #define    START    284
  34. #define    SYNCHRONIZE    285
  35. #define    THREADNAME    286
  36. #define    TYPE    287
  37. #define    VERBOSE    288
  38. #define    VERSION    289
  39. #define    XDCDATA    290
  40. #define    STRING    291
  41. #define    QUOTED_STRING    292
  42.  
  43. #line 1 "./nlmheader.y"
  44. /* nlmheader.y - parse NLM header specification keywords.
  45.      Copyright (C) 1993 Free Software Foundation, Inc.
  46.  
  47. This file is part of GNU Binutils.
  48.  
  49. This program is free software; you can redistribute it and/or modify
  50. it under the terms of the GNU General Public License as published by
  51. the Free Software Foundation; either version 2 of the License, or
  52. (at your option) any later version.
  53.  
  54. This program is distributed in the hope that it will be useful,
  55. but WITHOUT ANY WARRANTY; without even the implied warranty of
  56. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  57. GNU General Public License for more details.
  58.  
  59. You should have received a copy of the GNU General Public License
  60. along with this program; if not, write to the Free Software
  61. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  62.  
  63. /* Written by Ian Lance Taylor <ian@cygnus.com>.
  64.  
  65.    This bison file parses the commands recognized by the NetWare NLM
  66.    linker, except for lists of object files.  It stores the
  67.    information in global variables.
  68.  
  69.    This implementation is based on the description in the NetWare Tool
  70.    Maker Specification manual, edition 1.0.  */
  71.  
  72. #include <ansidecl.h>
  73. #include <stdio.h>
  74. #include <ctype.h>
  75. #include "bfd.h"
  76. #include "sysdep.h"
  77. #include "bucomm.h"
  78. #include "nlm/common.h"
  79. #include "nlm/internal.h"
  80. #include "nlmconv.h"
  81.  
  82. /* Information is stored in the structures pointed to by these
  83.    variables.  */
  84.  
  85. Nlm_Internal_Fixed_Header *fixed_hdr;
  86. Nlm_Internal_Variable_Header *var_hdr;
  87. Nlm_Internal_Version_Header *version_hdr;
  88. Nlm_Internal_Copyright_Header *copyright_hdr;
  89. Nlm_Internal_Extended_Header *extended_hdr;
  90.  
  91. /* Procedure named by CHECK.  */
  92. char *check_procedure;
  93. /* File named by CUSTOM.  */
  94. char *custom_file;
  95. /* Whether to generate debugging information (DEBUG).  */
  96. boolean debug_info;
  97. /* Procedure named by EXIT.  */
  98. char *exit_procedure;
  99. /* Exported symbols (EXPORT).  */
  100. struct string_list *export_symbols;
  101. /* List of files from INPUT.  */
  102. struct string_list *input_files;
  103. /* Map file name (MAP, FULLMAP).  */
  104. char *map_file;
  105. /* Whether a full map has been requested (FULLMAP).  */
  106. boolean full_map;
  107. /* File named by HELP.  */
  108. char *help_file;
  109. /* Imported symbols (IMPORT).  */
  110. struct string_list *import_symbols;
  111. /* File named by MESSAGES.  */
  112. char *message_file;
  113. /* Autoload module list (MODULE).  */
  114. struct string_list *modules;
  115. /* File named by OUTPUT.  */
  116. char *output_file;
  117. /* File named by SHARELIB.  */
  118. char *sharelib_file;
  119. /* Start procedure name (START).  */
  120. char *start_procedure;
  121. /* VERBOSE.  */
  122. boolean verbose;
  123. /* RPC description file (XDCDATA).  */
  124. char *rpc_file;
  125.  
  126. /* The number of serious errors that have occurred.  */
  127. int parse_errors;
  128.  
  129. /* The current symbol prefix when reading a list of import or export
  130.    symbols.  */
  131. static char *symbol_prefix;
  132.  
  133. /* Parser error message handler.  */
  134. #define yyerror(msg) nlmheader_error (msg);
  135.  
  136. /* Local functions.  */
  137. static int yylex PARAMS ((void));
  138. static void nlmlex_file_push PARAMS ((const char *));
  139. static boolean nlmlex_file_open PARAMS ((const char *));
  140. static int nlmlex_buf_init PARAMS ((void));
  141. static char nlmlex_buf_add PARAMS ((int));
  142. static long nlmlex_get_number PARAMS ((const char *));
  143. static void nlmheader_identify PARAMS ((void));
  144. static void nlmheader_warn PARAMS ((const char *, int));
  145. static void nlmheader_error PARAMS ((const char *));
  146. static struct string_list * string_list_cons PARAMS ((char *,
  147.                               struct string_list *));
  148. static struct string_list * string_list_append PARAMS ((struct string_list *,
  149.                             struct string_list *));
  150. static struct string_list * string_list_append1 PARAMS ((struct string_list *,
  151.                              char *));
  152. static char *xstrdup PARAMS ((const char *));
  153.  
  154.  
  155. #line 113 "./nlmheader.y"
  156. typedef union
  157. {
  158.   char *string;
  159.   struct string_list *list;
  160. } YYSTYPE;
  161.  
  162. #ifndef YYLTYPE
  163. typedef
  164.   struct yyltype
  165.     {
  166.       int timestamp;
  167.       int first_line;
  168.       int first_column;
  169.       int last_line;
  170.       int last_column;
  171.       char *text;
  172.    }
  173.   yyltype;
  174.  
  175. #define YYLTYPE yyltype
  176. #endif
  177.  
  178. #include <stdio.h>
  179.  
  180. #ifndef __cplusplus
  181. #ifndef __STDC__
  182. #define const
  183. #endif
  184. #endif
  185.  
  186.  
  187.  
  188. #define    YYFINAL        82
  189. #define    YYFLAG        -32768
  190. #define    YYNTBASE    40
  191.  
  192. #define YYTRANSLATE(x) ((unsigned)(x) <= 292 ? yytranslate[x] : 50)
  193.  
  194. static const char yytranslate[] = {     0,
  195.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  196.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  197.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  198.      2,     2,     2,     2,     2,     2,     2,     2,     2,    38,
  199.     39,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  200.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  201.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  202.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  203.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  204.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  205.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  206.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  207.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  208.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  209.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  212.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  214.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  221.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  222.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  223.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  224.     36,    37
  225. };
  226.  
  227. #if YYDEBUG != 0
  228. static const short yyprhs[] = {     0,
  229.      0,     2,     3,     6,     9,    12,    15,    18,    23,    25,
  230.     28,    31,    32,    36,    39,    42,    44,    47,    50,    51,
  231.     55,    58,    60,    63,    66,    69,    71,    73,    76,    78,
  232.     80,    83,    86,    89,    92,    94,    97,   100,   102,   107,
  233.    111,   114,   115,   117,   119,   121,   124,   127,   131,   133,
  234.    134
  235. };
  236.  
  237. static const short yyrhs[] = {    41,
  238.      0,     0,    42,    41,     0,     3,    36,     0,     4,    36,
  239.      0,     5,    37,     0,     6,    36,     0,     7,    36,    36,
  240.     36,     0,     8,     0,     9,    37,     0,    10,    36,     0,
  241.      0,    11,    43,    45,     0,    12,    36,     0,    13,    36,
  242.      0,    14,     0,    14,    36,     0,    15,    36,     0,     0,
  243.     16,    44,    45,     0,    17,    49,     0,    18,     0,    18,
  244.     36,     0,    19,    36,     0,    20,    49,     0,    21,     0,
  245.     22,     0,    23,    36,     0,    24,     0,    25,     0,    26,
  246.     37,     0,    27,    36,     0,    28,    36,     0,    29,    36,
  247.      0,    30,     0,    31,    37,     0,    32,    36,     0,    33,
  248.      0,    34,    36,    36,    36,     0,    34,    36,    36,     0,
  249.     35,    36,     0,     0,    46,     0,    48,     0,    47,     0,
  250.     46,    48,     0,    46,    47,     0,    38,    36,    39,     0,
  251.     36,     0,     0,    36,    49,     0
  252. };
  253.  
  254. #endif
  255.  
  256. #if YYDEBUG != 0
  257. static const short yyrline[] = { 0,
  258.    144,   150,   152,   157,   162,   167,   184,   188,   206,   210,
  259.    226,   230,   235,   238,   243,   248,   253,   258,   262,   267,
  260.    270,   274,   278,   282,   286,   290,   294,   298,   305,   309,
  261.    313,   329,   333,   338,   342,   346,   362,   367,   371,   395,
  262.    411,   419,   424,   434,   439,   443,   447,   455,   466,   482,
  263.    487
  264. };
  265.  
  266. static const char * const yytname[] = {   "$","error","$illegal.","CHECK","CODESTART",
  267. "COPYRIGHT","CUSTOM","DATE","DEBUG","DESCRIPTION","EXIT","EXPORT","FLAG_ON",
  268. "FLAG_OFF","FULLMAP","HELP","IMPORT","INPUT","MAP","MESSAGES","MODULE","MULTIPLE",
  269. "OS_DOMAIN","OUTPUT","PSEUDOPREEMPTION","REENTRANT","SCREENNAME","SHARELIB",
  270. "STACK","START","SYNCHRONIZE","THREADNAME","TYPE","VERBOSE","VERSION","XDCDATA",
  271. "STRING","QUOTED_STRING","'('","')'","file","commands","command","@1","@2","symbol_list_opt",
  272. "symbol_list","symbol_prefix","symbol","string_list",""
  273. };
  274. #endif
  275.  
  276. static const short yyr1[] = {     0,
  277.     40,    41,    41,    42,    42,    42,    42,    42,    42,    42,
  278.     42,    43,    42,    42,    42,    42,    42,    42,    44,    42,
  279.     42,    42,    42,    42,    42,    42,    42,    42,    42,    42,
  280.     42,    42,    42,    42,    42,    42,    42,    42,    42,    42,
  281.     42,    45,    45,    46,    46,    46,    46,    47,    48,    49,
  282.     49
  283. };
  284.  
  285. static const short yyr2[] = {     0,
  286.      1,     0,     2,     2,     2,     2,     2,     4,     1,     2,
  287.      2,     0,     3,     2,     2,     1,     2,     2,     0,     3,
  288.      2,     1,     2,     2,     2,     1,     1,     2,     1,     1,
  289.      2,     2,     2,     2,     1,     2,     2,     1,     4,     3,
  290.      2,     0,     1,     1,     1,     2,     2,     3,     1,     0,
  291.      2
  292. };
  293.  
  294. static const short yydefact[] = {     2,
  295.      0,     0,     0,     0,     0,     9,     0,     0,    12,     0,
  296.      0,    16,     0,    19,    50,    22,     0,    50,    26,    27,
  297.      0,    29,    30,     0,     0,     0,     0,    35,     0,     0,
  298.     38,     0,     0,     1,     2,     4,     5,     6,     7,     0,
  299.     10,    11,    42,    14,    15,    17,    18,    42,    50,    21,
  300.     23,    24,    25,    28,    31,    32,    33,    34,    36,    37,
  301.      0,    41,     3,     0,    49,     0,    13,    43,    45,    44,
  302.     20,    51,    40,     8,     0,    47,    46,    39,    48,     0,
  303.      0,     0
  304. };
  305.  
  306. static const short yydefgoto[] = {    80,
  307.     34,    35,    43,    48,    67,    68,    69,    70,    50
  308. };
  309.  
  310. static const short yypact[] = {    -3,
  311.     -1,     1,     2,     4,     5,-32768,     6,     8,-32768,     9,
  312.     10,    11,    12,-32768,    13,    14,    16,    13,-32768,-32768,
  313.     17,-32768,-32768,    18,    20,    21,    22,-32768,    23,    25,
  314. -32768,    26,    27,-32768,    -3,-32768,-32768,-32768,-32768,    29,
  315. -32768,-32768,    -2,-32768,-32768,-32768,-32768,    -2,    13,-32768,
  316. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  317.     30,-32768,-32768,    31,-32768,    32,-32768,    -2,-32768,-32768,
  318. -32768,-32768,    33,-32768,     3,-32768,-32768,-32768,-32768,    38,
  319.     51,-32768
  320. };
  321.  
  322. static const short yypgoto[] = {-32768,
  323.     19,-32768,-32768,-32768,    24,-32768,    -9,     7,    15
  324. };
  325.  
  326.  
  327. #define    YYLAST        75
  328.  
  329.  
  330. static const short yytable[] = {     1,
  331.      2,     3,     4,     5,     6,     7,     8,     9,    10,    11,
  332.     12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
  333.     22,    23,    24,    25,    26,    27,    28,    29,    30,    31,
  334.     32,    33,    53,    65,    36,    66,    37,    81,    38,    39,
  335.     40,    79,    41,    42,    44,    45,    46,    47,    49,    51,
  336.     82,    52,    54,    63,    55,    56,    57,    58,    76,    59,
  337.     60,    61,    62,    72,    64,    73,    74,    75,    78,     0,
  338.      0,    71,     0,     0,    77
  339. };
  340.  
  341. static const short yycheck[] = {     3,
  342.      4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
  343.     14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  344.     24,    25,    26,    27,    28,    29,    30,    31,    32,    33,
  345.     34,    35,    18,    36,    36,    38,    36,     0,    37,    36,
  346.     36,    39,    37,    36,    36,    36,    36,    36,    36,    36,
  347.      0,    36,    36,    35,    37,    36,    36,    36,    68,    37,
  348.     36,    36,    36,    49,    36,    36,    36,    36,    36,    -1,
  349.     -1,    48,    -1,    -1,    68
  350. };
  351. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  352. #line 3 "/usr/unsupported/lib/bison.simple"
  353.  
  354. /* Skeleton output parser for bison,
  355.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  356.  
  357.    This program is free software; you can redistribute it and/or modify
  358.    it under the terms of the GNU General Public License as published by
  359.    the Free Software Foundation; either version 1, or (at your option)
  360.    any later version.
  361.  
  362.    This program is distributed in the hope that it will be useful,
  363.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  364.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  365.    GNU General Public License for more details.
  366.  
  367.    You should have received a copy of the GNU General Public License
  368.    along with this program; if not, write to the Free Software
  369.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  370.  
  371.  
  372. #ifndef alloca
  373. #ifdef __GNUC__
  374. #define alloca __builtin_alloca
  375. #else /* not GNU C.  */
  376. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  377. #include <alloca.h>
  378. #else /* not sparc */
  379. #if defined (MSDOS) && !defined (__TURBOC__)
  380. #include <malloc.h>
  381. #else /* not MSDOS, or __TURBOC__ */
  382. #if defined(_AIX)
  383. #include <malloc.h>
  384.  #pragma alloca
  385. #else /* not MSDOS, __TURBOC__, or _AIX */
  386. #ifdef __hpux
  387. #ifdef __cplusplus
  388. extern "C" {
  389. void *alloca (unsigned int);
  390. };
  391. #else /* not __cplusplus */
  392. void *alloca ();
  393. #endif /* not __cplusplus */
  394. #endif /* __hpux */
  395. #endif /* not _AIX */
  396. #endif /* not MSDOS, or __TURBOC__ */
  397. #endif /* not sparc.  */
  398. #endif /* not GNU C.  */
  399. #endif /* alloca not defined.  */
  400.  
  401. /* This is the parser code that is written into each bison parser
  402.   when the %semantic_parser declaration is not specified in the grammar.
  403.   It was written by Richard Stallman by simplifying the hairy parser
  404.   used when %semantic_parser is specified.  */
  405.  
  406. /* Note: there must be only one dollar sign in this file.
  407.    It is replaced by the list of actions, each action
  408.    as one case of the switch.  */
  409.  
  410. #define yyerrok        (yyerrstatus = 0)
  411. #define yyclearin    (yychar = YYEMPTY)
  412. #define YYEMPTY        -2
  413. #define YYEOF        0
  414. #define YYACCEPT    return(0)
  415. #define YYABORT     return(1)
  416. #define YYERROR        goto yyerrlab1
  417. /* Like YYERROR except do call yyerror.
  418.    This remains here temporarily to ease the
  419.    transition to the new meaning of YYERROR, for GCC.
  420.    Once GCC version 2 has supplanted version 1, this can go.  */
  421. #define YYFAIL        goto yyerrlab
  422. #define YYRECOVERING()  (!!yyerrstatus)
  423. #define YYBACKUP(token, value) \
  424. do                                \
  425.   if (yychar == YYEMPTY && yylen == 1)                \
  426.     { yychar = (token), yylval = (value);            \
  427.       yychar1 = YYTRANSLATE (yychar);                \
  428.       YYPOPSTACK;                        \
  429.       goto yybackup;                        \
  430.     }                                \
  431.   else                                \
  432.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  433. while (0)
  434.  
  435. #define YYTERROR    1
  436. #define YYERRCODE    256
  437.  
  438. #ifndef YYPURE
  439. #define YYLEX        yylex()
  440. #endif
  441.  
  442. #ifdef YYPURE
  443. #ifdef YYLSP_NEEDED
  444. #define YYLEX        yylex(&yylval, &yylloc)
  445. #else
  446. #define YYLEX        yylex(&yylval)
  447. #endif
  448. #endif
  449.  
  450. /* If nonreentrant, generate the variables here */
  451.  
  452. #ifndef YYPURE
  453.  
  454. int    yychar;            /*  the lookahead symbol        */
  455. YYSTYPE    yylval;            /*  the semantic value of the        */
  456.                 /*  lookahead symbol            */
  457.  
  458. #ifdef YYLSP_NEEDED
  459. YYLTYPE yylloc;            /*  location data for the lookahead    */
  460.                 /*  symbol                */
  461. #endif
  462.  
  463. int yynerrs;            /*  number of parse errors so far       */
  464. #endif  /* not YYPURE */
  465.  
  466. #if YYDEBUG != 0
  467. int yydebug;            /*  nonzero means print parse trace    */
  468. /* Since this is uninitialized, it does not stop multiple parsers
  469.    from coexisting.  */
  470. #endif
  471.  
  472. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  473.  
  474. #ifndef    YYINITDEPTH
  475. #define YYINITDEPTH 200
  476. #endif
  477.  
  478. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  479.     (effective only if the built-in stack extension method is used).  */
  480.  
  481. #if YYMAXDEPTH == 0
  482. #undef YYMAXDEPTH
  483. #endif
  484.  
  485. #ifndef YYMAXDEPTH
  486. #define YYMAXDEPTH 10000
  487. #endif
  488.  
  489. /* Prevent warning if -Wstrict-prototypes.  */
  490. #ifdef __GNUC__
  491. int yyparse (void);
  492. #endif
  493.  
  494. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  495. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  496. #else                /* not GNU C or C++ */
  497. #ifndef __cplusplus
  498.  
  499. /* This is the most reliable way to avoid incompatibilities
  500.    in available built-in functions on various systems.  */
  501. static void
  502. __yy_bcopy (from, to, count)
  503.      char *from;
  504.      char *to;
  505.      int count;
  506. {
  507.   register char *f = from;
  508.   register char *t = to;
  509.   register int i = count;
  510.  
  511.   while (i-- > 0)
  512.     *t++ = *f++;
  513. }
  514.  
  515. #else /* __cplusplus */
  516.  
  517. /* This is the most reliable way to avoid incompatibilities
  518.    in available built-in functions on various systems.  */
  519. static void
  520. __yy_bcopy (char *from, char *to, int count)
  521. {
  522.   register char *f = from;
  523.   register char *t = to;
  524.   register int i = count;
  525.  
  526.   while (i-- > 0)
  527.     *t++ = *f++;
  528. }
  529.  
  530. #endif
  531. #endif
  532.  
  533. #line 184 "/usr/unsupported/lib/bison.simple"
  534. int
  535. yyparse()
  536. {
  537.   register int yystate;
  538.   register int yyn;
  539.   register short *yyssp;
  540.   register YYSTYPE *yyvsp;
  541.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  542.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  543.  
  544.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  545.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  546.  
  547.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  548.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  549.  
  550. #ifdef YYLSP_NEEDED
  551.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  552.   YYLTYPE *yyls = yylsa;
  553.   YYLTYPE *yylsp;
  554.  
  555. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  556. #else
  557. #define YYPOPSTACK   (yyvsp--, yyssp--)
  558. #endif
  559.  
  560.   int yystacksize = YYINITDEPTH;
  561.  
  562. #ifdef YYPURE
  563.   int yychar;
  564.   YYSTYPE yylval;
  565.   int yynerrs;
  566. #ifdef YYLSP_NEEDED
  567.   YYLTYPE yylloc;
  568. #endif
  569. #endif
  570.  
  571.   YYSTYPE yyval;        /*  the variable used to return        */
  572.                 /*  semantic values from the action    */
  573.                 /*  routines                */
  574.  
  575.   int yylen;
  576.  
  577. #if YYDEBUG != 0
  578.   if (yydebug)
  579.     fprintf(stderr, "Starting parse\n");
  580. #endif
  581.  
  582.   yystate = 0;
  583.   yyerrstatus = 0;
  584.   yynerrs = 0;
  585.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  586.  
  587.   /* Initialize stack pointers.
  588.      Waste one element of value and location stack
  589.      so that they stay on the same level as the state stack.
  590.      The wasted elements are never initialized.  */
  591.  
  592.   yyssp = yyss - 1;
  593.   yyvsp = yyvs;
  594. #ifdef YYLSP_NEEDED
  595.   yylsp = yyls;
  596. #endif
  597.  
  598. /* Push a new state, which is found in  yystate  .  */
  599. /* In all cases, when you get here, the value and location stacks
  600.    have just been pushed. so pushing a state here evens the stacks.  */
  601. yynewstate:
  602.  
  603.   *++yyssp = yystate;
  604.  
  605.   if (yyssp >= yyss + yystacksize - 1)
  606.     {
  607.       /* Give user a chance to reallocate the stack */
  608.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  609.       YYSTYPE *yyvs1 = yyvs;
  610.       short *yyss1 = yyss;
  611. #ifdef YYLSP_NEEDED
  612.       YYLTYPE *yyls1 = yyls;
  613. #endif
  614.  
  615.       /* Get the current used size of the three stacks, in elements.  */
  616.       int size = yyssp - yyss + 1;
  617.  
  618. #ifdef yyoverflow
  619.       /* Each stack pointer address is followed by the size of
  620.      the data in use in that stack, in bytes.  */
  621. #ifdef YYLSP_NEEDED
  622.       /* This used to be a conditional around just the two extra args,
  623.      but that might be undefined if yyoverflow is a macro.  */
  624.       yyoverflow("parser stack overflow",
  625.          &yyss1, size * sizeof (*yyssp),
  626.          &yyvs1, size * sizeof (*yyvsp),
  627.          &yyls1, size * sizeof (*yylsp),
  628.          &yystacksize);
  629. #else
  630.       yyoverflow("parser stack overflow",
  631.          &yyss1, size * sizeof (*yyssp),
  632.          &yyvs1, size * sizeof (*yyvsp),
  633.          &yystacksize);
  634. #endif
  635.  
  636.       yyss = yyss1; yyvs = yyvs1;
  637. #ifdef YYLSP_NEEDED
  638.       yyls = yyls1;
  639. #endif
  640. #else /* no yyoverflow */
  641.       /* Extend the stack our own way.  */
  642.       if (yystacksize >= YYMAXDEPTH)
  643.     {
  644.       yyerror("parser stack overflow");
  645.       return 2;
  646.     }
  647.       yystacksize *= 2;
  648.       if (yystacksize > YYMAXDEPTH)
  649.     yystacksize = YYMAXDEPTH;
  650.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  651.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  652.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  653.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  654. #ifdef YYLSP_NEEDED
  655.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  656.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  657. #endif
  658. #endif /* no yyoverflow */
  659.  
  660.       yyssp = yyss + size - 1;
  661.       yyvsp = yyvs + size - 1;
  662. #ifdef YYLSP_NEEDED
  663.       yylsp = yyls + size - 1;
  664. #endif
  665.  
  666. #if YYDEBUG != 0
  667.       if (yydebug)
  668.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  669. #endif
  670.  
  671.       if (yyssp >= yyss + yystacksize - 1)
  672.     YYABORT;
  673.     }
  674.  
  675. #if YYDEBUG != 0
  676.   if (yydebug)
  677.     fprintf(stderr, "Entering state %d\n", yystate);
  678. #endif
  679.  
  680.   goto yybackup;
  681.  yybackup:
  682.  
  683. /* Do appropriate processing given the current state.  */
  684. /* Read a lookahead token if we need one and don't already have one.  */
  685. /* yyresume: */
  686.  
  687.   /* First try to decide what to do without reference to lookahead token.  */
  688.  
  689.   yyn = yypact[yystate];
  690.   if (yyn == YYFLAG)
  691.     goto yydefault;
  692.  
  693.   /* Not known => get a lookahead token if don't already have one.  */
  694.  
  695.   /* yychar is either YYEMPTY or YYEOF
  696.      or a valid token in external form.  */
  697.  
  698.   if (yychar == YYEMPTY)
  699.     {
  700. #if YYDEBUG != 0
  701.       if (yydebug)
  702.     fprintf(stderr, "Reading a token: ");
  703. #endif
  704.       yychar = YYLEX;
  705.     }
  706.  
  707.   /* Convert token to internal form (in yychar1) for indexing tables with */
  708.  
  709.   if (yychar <= 0)        /* This means end of input. */
  710.     {
  711.       yychar1 = 0;
  712.       yychar = YYEOF;        /* Don't call YYLEX any more */
  713.  
  714. #if YYDEBUG != 0
  715.       if (yydebug)
  716.     fprintf(stderr, "Now at end of input.\n");
  717. #endif
  718.     }
  719.   else
  720.     {
  721.       yychar1 = YYTRANSLATE(yychar);
  722.  
  723. #if YYDEBUG != 0
  724.       if (yydebug)
  725.     {
  726.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  727.       /* Give the individual parser a way to print the precise meaning
  728.          of a token, for further debugging info.  */
  729. #ifdef YYPRINT
  730.       YYPRINT (stderr, yychar, yylval);
  731. #endif
  732.       fprintf (stderr, ")\n");
  733.     }
  734. #endif
  735.     }
  736.  
  737.   yyn += yychar1;
  738.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  739.     goto yydefault;
  740.  
  741.   yyn = yytable[yyn];
  742.  
  743.   /* yyn is what to do for this token type in this state.
  744.      Negative => reduce, -yyn is rule number.
  745.      Positive => shift, yyn is new state.
  746.        New state is final state => don't bother to shift,
  747.        just return success.
  748.      0, or most negative number => error.  */
  749.  
  750.   if (yyn < 0)
  751.     {
  752.       if (yyn == YYFLAG)
  753.     goto yyerrlab;
  754.       yyn = -yyn;
  755.       goto yyreduce;
  756.     }
  757.   else if (yyn == 0)
  758.     goto yyerrlab;
  759.  
  760.   if (yyn == YYFINAL)
  761.     YYACCEPT;
  762.  
  763.   /* Shift the lookahead token.  */
  764.  
  765. #if YYDEBUG != 0
  766.   if (yydebug)
  767.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  768. #endif
  769.  
  770.   /* Discard the token being shifted unless it is eof.  */
  771.   if (yychar != YYEOF)
  772.     yychar = YYEMPTY;
  773.  
  774.   *++yyvsp = yylval;
  775. #ifdef YYLSP_NEEDED
  776.   *++yylsp = yylloc;
  777. #endif
  778.  
  779.   /* count tokens shifted since error; after three, turn off error status.  */
  780.   if (yyerrstatus) yyerrstatus--;
  781.  
  782.   yystate = yyn;
  783.   goto yynewstate;
  784.  
  785. /* Do the default action for the current state.  */
  786. yydefault:
  787.  
  788.   yyn = yydefact[yystate];
  789.   if (yyn == 0)
  790.     goto yyerrlab;
  791.  
  792. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  793. yyreduce:
  794.   yylen = yyr2[yyn];
  795.   if (yylen > 0)
  796.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  797.  
  798. #if YYDEBUG != 0
  799.   if (yydebug)
  800.     {
  801.       int i;
  802.  
  803.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  804.            yyn, yyrline[yyn]);
  805.  
  806.       /* Print the symbols being reduced, and their result.  */
  807.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  808.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  809.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  810.     }
  811. #endif
  812.  
  813.  
  814.   switch (yyn) {
  815.  
  816. case 4:
  817. #line 159 "./nlmheader.y"
  818. {
  819.         check_procedure = yyvsp[0].string;
  820.       ;
  821.     break;}
  822. case 5:
  823. #line 163 "./nlmheader.y"
  824. {
  825.         nlmheader_warn ("CODESTART is not implemented; sorry", -1);
  826.         free (yyvsp[0].string);
  827.       ;
  828.     break;}
  829. case 6:
  830. #line 168 "./nlmheader.y"
  831. {
  832.         int len;
  833.  
  834.         strncpy (copyright_hdr->stamp, "CoPyRiGhT=", 10);
  835.         len = strlen (yyvsp[0].string);
  836.         if (len >= NLM_MAX_COPYRIGHT_MESSAGE_LENGTH)
  837.           {
  838.         nlmheader_warn ("copyright string is too long",
  839.                 NLM_MAX_COPYRIGHT_MESSAGE_LENGTH - 1);
  840.         len = NLM_MAX_COPYRIGHT_MESSAGE_LENGTH - 1;
  841.           }
  842.         copyright_hdr->copyrightMessageLength = len;
  843.         strncpy (copyright_hdr->copyrightMessage, yyvsp[0].string, len);
  844.         copyright_hdr->copyrightMessage[len] = '\0';
  845.         free (yyvsp[0].string);
  846.       ;
  847.     break;}
  848. case 7:
  849. #line 185 "./nlmheader.y"
  850. {
  851.         custom_file = yyvsp[0].string;
  852.       ;
  853.     break;}
  854. case 8:
  855. #line 189 "./nlmheader.y"
  856. {
  857.         /* We don't set the version stamp here, because we use the
  858.            version stamp to detect whether the required VERSION
  859.            keyword was given.  */
  860.         version_hdr->month = nlmlex_get_number (yyvsp[-2].string);
  861.         version_hdr->day = nlmlex_get_number (yyvsp[-1].string);
  862.         version_hdr->year = nlmlex_get_number (yyvsp[0].string);
  863.         free (yyvsp[-2].string);
  864.         free (yyvsp[-1].string);
  865.         free (yyvsp[0].string);
  866.         if (version_hdr->month < 1 || version_hdr->month > 12)
  867.           nlmheader_warn ("illegal month", -1);
  868.         if (version_hdr->day < 1 || version_hdr->day > 31)
  869.           nlmheader_warn ("illegal day", -1);
  870.         if (version_hdr->year < 1900 || version_hdr->year > 3000)
  871.           nlmheader_warn ("illegal year", -1);
  872.       ;
  873.     break;}
  874. case 9:
  875. #line 207 "./nlmheader.y"
  876. {
  877.         debug_info = true;
  878.       ;
  879.     break;}
  880. case 10:
  881. #line 211 "./nlmheader.y"
  882. {
  883.         int len;
  884.  
  885.         len = strlen (yyvsp[0].string);
  886.         if (len > NLM_MAX_DESCRIPTION_LENGTH)
  887.           {
  888.         nlmheader_warn ("description string is too long",
  889.                 NLM_MAX_DESCRIPTION_LENGTH);
  890.         len = NLM_MAX_DESCRIPTION_LENGTH;
  891.           }
  892.         var_hdr->descriptionLength = len;
  893.         strncpy (var_hdr->descriptionText, yyvsp[0].string, len);
  894.         var_hdr->descriptionText[len] = '\0';
  895.         free (yyvsp[0].string);
  896.       ;
  897.     break;}
  898. case 11:
  899. #line 227 "./nlmheader.y"
  900. {
  901.         exit_procedure = yyvsp[0].string;
  902.       ;
  903.     break;}
  904. case 12:
  905. #line 231 "./nlmheader.y"
  906. {
  907.         symbol_prefix = NULL;
  908.       ;
  909.     break;}
  910. case 13:
  911. #line 235 "./nlmheader.y"
  912. {
  913.         export_symbols = string_list_append (export_symbols, yyvsp[0].list);
  914.       ;
  915.     break;}
  916. case 14:
  917. #line 239 "./nlmheader.y"
  918. {
  919.         fixed_hdr->flags |= nlmlex_get_number (yyvsp[0].string);
  920.         free (yyvsp[0].string);
  921.       ;
  922.     break;}
  923. case 15:
  924. #line 244 "./nlmheader.y"
  925. {
  926.         fixed_hdr->flags &=~ nlmlex_get_number (yyvsp[0].string);
  927.         free (yyvsp[0].string);
  928.       ;
  929.     break;}
  930. case 16:
  931. #line 249 "./nlmheader.y"
  932. {
  933.         map_file = "";
  934.         full_map = true;
  935.       ;
  936.     break;}
  937. case 17:
  938. #line 254 "./nlmheader.y"
  939. {
  940.         map_file = yyvsp[0].string;
  941.         full_map = true;
  942.       ;
  943.     break;}
  944. case 18:
  945. #line 259 "./nlmheader.y"
  946. {
  947.         help_file = yyvsp[0].string;
  948.       ;
  949.     break;}
  950. case 19:
  951. #line 263 "./nlmheader.y"
  952. {
  953.         symbol_prefix = NULL;
  954.       ;
  955.     break;}
  956. case 20:
  957. #line 267 "./nlmheader.y"
  958. {
  959.         import_symbols = string_list_append (import_symbols, yyvsp[0].list);
  960.       ;
  961.     break;}
  962. case 21:
  963. #line 271 "./nlmheader.y"
  964. {
  965.         input_files = string_list_append (input_files, yyvsp[0].list);
  966.       ;
  967.     break;}
  968. case 22:
  969. #line 275 "./nlmheader.y"
  970. {
  971.         map_file = "";
  972.       ;
  973.     break;}
  974. case 23:
  975. #line 279 "./nlmheader.y"
  976. {
  977.         map_file = yyvsp[0].string;
  978.       ;
  979.     break;}
  980. case 24:
  981. #line 283 "./nlmheader.y"
  982. {
  983.         message_file = yyvsp[0].string;
  984.       ;
  985.     break;}
  986. case 25:
  987. #line 287 "./nlmheader.y"
  988. {
  989.         modules = string_list_append (modules, yyvsp[0].list);
  990.       ;
  991.     break;}
  992. case 26:
  993. #line 291 "./nlmheader.y"
  994. {
  995.         fixed_hdr->flags |= 0x2;
  996.       ;
  997.     break;}
  998. case 27:
  999. #line 295 "./nlmheader.y"
  1000. {
  1001.         fixed_hdr->flags |= 0x10;
  1002.       ;
  1003.     break;}
  1004. case 28:
  1005. #line 299 "./nlmheader.y"
  1006. {
  1007.         if (output_file == NULL)
  1008.           output_file = yyvsp[0].string;
  1009.         else
  1010.           nlmheader_warn ("ignoring duplicate OUTPUT statement", -1);
  1011.       ;
  1012.     break;}
  1013. case 29:
  1014. #line 306 "./nlmheader.y"
  1015. {
  1016.         fixed_hdr->flags |= 0x8;
  1017.       ;
  1018.     break;}
  1019. case 30:
  1020. #line 310 "./nlmheader.y"
  1021. {
  1022.         fixed_hdr->flags |= 0x1;
  1023.       ;
  1024.     break;}
  1025. case 31:
  1026. #line 314 "./nlmheader.y"
  1027. {
  1028.         int len;
  1029.  
  1030.         len = strlen (yyvsp[0].string);
  1031.         if (len >= NLM_MAX_SCREEN_NAME_LENGTH)
  1032.           {
  1033.         nlmheader_warn ("screen name is too long",
  1034.                 NLM_MAX_SCREEN_NAME_LENGTH);
  1035.         len = NLM_MAX_SCREEN_NAME_LENGTH;
  1036.           }
  1037.         var_hdr->screenNameLength = len;
  1038.         strncpy (var_hdr->screenName, yyvsp[0].string, len);
  1039.         var_hdr->screenName[NLM_MAX_SCREEN_NAME_LENGTH] = '\0';
  1040.         free (yyvsp[0].string);
  1041.       ;
  1042.     break;}
  1043. case 32:
  1044. #line 330 "./nlmheader.y"
  1045. {
  1046.         sharelib_file = yyvsp[0].string;
  1047.       ;
  1048.     break;}
  1049. case 33:
  1050. #line 334 "./nlmheader.y"
  1051. {
  1052.         var_hdr->stackSize = nlmlex_get_number (yyvsp[0].string);
  1053.         free (yyvsp[0].string);
  1054.       ;
  1055.     break;}
  1056. case 34:
  1057. #line 339 "./nlmheader.y"
  1058. {
  1059.         start_procedure = yyvsp[0].string;
  1060.       ;
  1061.     break;}
  1062. case 35:
  1063. #line 343 "./nlmheader.y"
  1064. {
  1065.         fixed_hdr->flags |= 0x4;
  1066.       ;
  1067.     break;}
  1068. case 36:
  1069. #line 347 "./nlmheader.y"
  1070. {
  1071.         int len;
  1072.  
  1073.         len = strlen (yyvsp[0].string);
  1074.         if (len >= NLM_MAX_THREAD_NAME_LENGTH)
  1075.           {
  1076.         nlmheader_warn ("thread name is too long",
  1077.                 NLM_MAX_THREAD_NAME_LENGTH);
  1078.         len = NLM_MAX_THREAD_NAME_LENGTH;
  1079.           }
  1080.         var_hdr->threadNameLength = len;
  1081.         strncpy (var_hdr->threadName, yyvsp[0].string, len);
  1082.         var_hdr->threadName[len] = '\0';
  1083.         free (yyvsp[0].string);
  1084.       ;
  1085.     break;}
  1086. case 37:
  1087. #line 363 "./nlmheader.y"
  1088. {
  1089.         fixed_hdr->moduleType = nlmlex_get_number (yyvsp[0].string);
  1090.         free (yyvsp[0].string);
  1091.       ;
  1092.     break;}
  1093. case 38:
  1094. #line 368 "./nlmheader.y"
  1095. {
  1096.         verbose = true;
  1097.       ;
  1098.     break;}
  1099. case 39:
  1100. #line 372 "./nlmheader.y"
  1101. {
  1102.         long val;
  1103.  
  1104.         strncpy (version_hdr->stamp, "VeRsIoN#", 8);
  1105.         version_hdr->majorVersion = nlmlex_get_number (yyvsp[-2].string);
  1106.         val = nlmlex_get_number (yyvsp[-1].string);
  1107.         if (val < 0 || val > 99)
  1108.           nlmheader_warn ("illegal minor version number (must be between 0 and 99)",
  1109.                   -1);
  1110.         else
  1111.           version_hdr->minorVersion = val;
  1112.         val = nlmlex_get_number (yyvsp[0].string);
  1113.         if (val < 0)
  1114.           nlmheader_warn ("illegal revision number (must be between 0 and 26)",
  1115.                   -1);
  1116.         else if (val > 26)
  1117.           version_hdr->revision = 0;
  1118.         else
  1119.           version_hdr->revision = val;
  1120.         free (yyvsp[-2].string);
  1121.         free (yyvsp[-1].string);
  1122.         free (yyvsp[0].string);
  1123.       ;
  1124.     break;}
  1125. case 40:
  1126. #line 396 "./nlmheader.y"
  1127. {
  1128.         long val;
  1129.  
  1130.         strncpy (version_hdr->stamp, "VeRsIoN#", 8);
  1131.         version_hdr->majorVersion = nlmlex_get_number (yyvsp[-1].string);
  1132.         val = nlmlex_get_number (yyvsp[0].string);
  1133.         if (val < 0 || val > 99)
  1134.           nlmheader_warn ("illegal minor version number (must be between 0 and 99)",
  1135.                   -1);
  1136.         else
  1137.           version_hdr->minorVersion = val;
  1138.         version_hdr->revision = 0;
  1139.         free (yyvsp[-1].string);
  1140.         free (yyvsp[0].string);
  1141.       ;
  1142.     break;}
  1143. case 41:
  1144. #line 412 "./nlmheader.y"
  1145. {
  1146.         rpc_file = yyvsp[0].string;
  1147.       ;
  1148.     break;}
  1149. case 42:
  1150. #line 421 "./nlmheader.y"
  1151. {
  1152.         yyval.list = NULL;
  1153.       ;
  1154.     break;}
  1155. case 43:
  1156. #line 425 "./nlmheader.y"
  1157. {
  1158.         yyval.list = yyvsp[0].list;
  1159.       ;
  1160.     break;}
  1161. case 44:
  1162. #line 436 "./nlmheader.y"
  1163. {
  1164.         yyval.list = string_list_cons (yyvsp[0].string, NULL);
  1165.       ;
  1166.     break;}
  1167. case 45:
  1168. #line 440 "./nlmheader.y"
  1169. {
  1170.         yyval.list = NULL;
  1171.       ;
  1172.     break;}
  1173. case 46:
  1174. #line 444 "./nlmheader.y"
  1175. {
  1176.         yyval.list = string_list_append1 (yyvsp[-1].list, yyvsp[0].string);
  1177.       ;
  1178.     break;}
  1179. case 47:
  1180. #line 448 "./nlmheader.y"
  1181. {
  1182.         yyval.list = yyvsp[-1].list;
  1183.       ;
  1184.     break;}
  1185. case 48:
  1186. #line 457 "./nlmheader.y"
  1187. {
  1188.         if (symbol_prefix != NULL)
  1189.           free (symbol_prefix);
  1190.         symbol_prefix = yyvsp[-1].string;
  1191.       ;
  1192.     break;}
  1193. case 49:
  1194. #line 468 "./nlmheader.y"
  1195. {
  1196.         if (symbol_prefix == NULL)
  1197.           yyval.string = yyvsp[0].string;
  1198.         else
  1199.           {
  1200.         yyval.string = xmalloc (strlen (symbol_prefix) + strlen (yyvsp[0].string) + 2);
  1201.         sprintf (yyval.string, "%s@%s", symbol_prefix, yyvsp[0].string);
  1202.         free (yyvsp[0].string);
  1203.           }
  1204.       ;
  1205.     break;}
  1206. case 50:
  1207. #line 484 "./nlmheader.y"
  1208. {
  1209.         yyval.list = NULL;
  1210.       ;
  1211.     break;}
  1212. case 51:
  1213. #line 488 "./nlmheader.y"
  1214. {
  1215.         yyval.list = string_list_cons (yyvsp[-1].string, yyvsp[0].list);
  1216.       ;
  1217.     break;}
  1218. }
  1219.    /* the action file gets copied in in place of this dollarsign */
  1220. #line 465 "/usr/unsupported/lib/bison.simple"
  1221.  
  1222.   yyvsp -= yylen;
  1223.   yyssp -= yylen;
  1224. #ifdef YYLSP_NEEDED
  1225.   yylsp -= yylen;
  1226. #endif
  1227.  
  1228. #if YYDEBUG != 0
  1229.   if (yydebug)
  1230.     {
  1231.       short *ssp1 = yyss - 1;
  1232.       fprintf (stderr, "state stack now");
  1233.       while (ssp1 != yyssp)
  1234.     fprintf (stderr, " %d", *++ssp1);
  1235.       fprintf (stderr, "\n");
  1236.     }
  1237. #endif
  1238.  
  1239.   *++yyvsp = yyval;
  1240.  
  1241. #ifdef YYLSP_NEEDED
  1242.   yylsp++;
  1243.   if (yylen == 0)
  1244.     {
  1245.       yylsp->first_line = yylloc.first_line;
  1246.       yylsp->first_column = yylloc.first_column;
  1247.       yylsp->last_line = (yylsp-1)->last_line;
  1248.       yylsp->last_column = (yylsp-1)->last_column;
  1249.       yylsp->text = 0;
  1250.     }
  1251.   else
  1252.     {
  1253.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  1254.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  1255.     }
  1256. #endif
  1257.  
  1258.   /* Now "shift" the result of the reduction.
  1259.      Determine what state that goes to,
  1260.      based on the state we popped back to
  1261.      and the rule number reduced by.  */
  1262.  
  1263.   yyn = yyr1[yyn];
  1264.  
  1265.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  1266.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  1267.     yystate = yytable[yystate];
  1268.   else
  1269.     yystate = yydefgoto[yyn - YYNTBASE];
  1270.  
  1271.   goto yynewstate;
  1272.  
  1273. yyerrlab:   /* here on detecting error */
  1274.  
  1275.   if (! yyerrstatus)
  1276.     /* If not already recovering from an error, report this error.  */
  1277.     {
  1278.       ++yynerrs;
  1279.  
  1280. #ifdef YYERROR_VERBOSE
  1281.       yyn = yypact[yystate];
  1282.  
  1283.       if (yyn > YYFLAG && yyn < YYLAST)
  1284.     {
  1285.       int size = 0;
  1286.       char *msg;
  1287.       int x, count;
  1288.  
  1289.       count = 0;
  1290.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  1291.       for (x = (yyn < 0 ? -yyn : 0);
  1292.            x < (sizeof(yytname) / sizeof(char *)); x++)
  1293.         if (yycheck[x + yyn] == x)
  1294.           size += strlen(yytname[x]) + 15, count++;
  1295.       msg = (char *) malloc(size + 15);
  1296.       if (msg != 0)
  1297.         {
  1298.           strcpy(msg, "parse error");
  1299.  
  1300.           if (count < 5)
  1301.         {
  1302.           count = 0;
  1303.           for (x = (yyn < 0 ? -yyn : 0);
  1304.                x < (sizeof(yytname) / sizeof(char *)); x++)
  1305.             if (yycheck[x + yyn] == x)
  1306.               {
  1307.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  1308.             strcat(msg, yytname[x]);
  1309.             strcat(msg, "'");
  1310.             count++;
  1311.               }
  1312.         }
  1313.           yyerror(msg);
  1314.           free(msg);
  1315.         }
  1316.       else
  1317.         yyerror ("parse error; also virtual memory exceeded");
  1318.     }
  1319.       else
  1320. #endif /* YYERROR_VERBOSE */
  1321.     yyerror("parse error");
  1322.     }
  1323.  
  1324.   goto yyerrlab1;
  1325. yyerrlab1:   /* here on error raised explicitly by an action */
  1326.  
  1327.   if (yyerrstatus == 3)
  1328.     {
  1329.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  1330.  
  1331.       /* return failure if at end of input */
  1332.       if (yychar == YYEOF)
  1333.     YYABORT;
  1334.  
  1335. #if YYDEBUG != 0
  1336.       if (yydebug)
  1337.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  1338. #endif
  1339.  
  1340.       yychar = YYEMPTY;
  1341.     }
  1342.  
  1343.   /* Else will try to reuse lookahead token
  1344.      after shifting the error token.  */
  1345.  
  1346.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  1347.  
  1348.   goto yyerrhandle;
  1349.  
  1350. yyerrdefault:  /* current state does not do anything special for the error token. */
  1351.  
  1352. #if 0
  1353.   /* This is wrong; only states that explicitly want error tokens
  1354.      should shift them.  */
  1355.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  1356.   if (yyn) goto yydefault;
  1357. #endif
  1358.  
  1359. yyerrpop:   /* pop the current state because it cannot handle the error token */
  1360.  
  1361.   if (yyssp == yyss) YYABORT;
  1362.   yyvsp--;
  1363.   yystate = *--yyssp;
  1364. #ifdef YYLSP_NEEDED
  1365.   yylsp--;
  1366. #endif
  1367.  
  1368. #if YYDEBUG != 0
  1369.   if (yydebug)
  1370.     {
  1371.       short *ssp1 = yyss - 1;
  1372.       fprintf (stderr, "Error: state stack now");
  1373.       while (ssp1 != yyssp)
  1374.     fprintf (stderr, " %d", *++ssp1);
  1375.       fprintf (stderr, "\n");
  1376.     }
  1377. #endif
  1378.  
  1379. yyerrhandle:
  1380.  
  1381.   yyn = yypact[yystate];
  1382.   if (yyn == YYFLAG)
  1383.     goto yyerrdefault;
  1384.  
  1385.   yyn += YYTERROR;
  1386.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  1387.     goto yyerrdefault;
  1388.  
  1389.   yyn = yytable[yyn];
  1390.   if (yyn < 0)
  1391.     {
  1392.       if (yyn == YYFLAG)
  1393.     goto yyerrpop;
  1394.       yyn = -yyn;
  1395.       goto yyreduce;
  1396.     }
  1397.   else if (yyn == 0)
  1398.     goto yyerrpop;
  1399.  
  1400.   if (yyn == YYFINAL)
  1401.     YYACCEPT;
  1402.  
  1403. #if YYDEBUG != 0
  1404.   if (yydebug)
  1405.     fprintf(stderr, "Shifting error token, ");
  1406. #endif
  1407.  
  1408.   *++yyvsp = yylval;
  1409. #ifdef YYLSP_NEEDED
  1410.   *++yylsp = yylloc;
  1411. #endif
  1412.  
  1413.   yystate = yyn;
  1414.   goto yynewstate;
  1415. }
  1416. #line 493 "./nlmheader.y"
  1417.  
  1418.  
  1419. /* If strerror is just a macro, we want to use the one from libiberty
  1420.    since it will handle undefined values.  */
  1421. #undef strerror
  1422. extern char *strerror ();
  1423.  
  1424. /* The lexer is simple, too simple for flex.  Keywords are only
  1425.    recognized at the start of lines.  Everything else must be an
  1426.    argument.  A comma is treated as whitespace.  */
  1427.  
  1428. /* The states the lexer can be in.  */
  1429.  
  1430. enum lex_state
  1431. {
  1432.   /* At the beginning of a line.  */
  1433.   BEGINNING_OF_LINE,
  1434.   /* In the middle of a line.  */
  1435.   IN_LINE
  1436. };
  1437.  
  1438. /* We need to keep a stack of files to handle file inclusion.  */
  1439.  
  1440. struct input
  1441. {
  1442.   /* The file to read from.  */
  1443.   FILE *file;
  1444.   /* The name of the file.  */
  1445.   char *name;
  1446.   /* The current line number.  */
  1447.   int lineno;
  1448.   /* The current state.  */
  1449.   enum lex_state state;
  1450.   /* The next file on the stack.  */
  1451.   struct input *next;
  1452. };
  1453.  
  1454. /* The current input file.  */
  1455.  
  1456. static struct input current;
  1457.  
  1458. /* The character which introduces comments.  */
  1459. #define COMMENT_CHAR '#'
  1460.  
  1461. /* Start the lexer going on the main input file.  */
  1462.  
  1463. boolean
  1464. nlmlex_file (name)
  1465.      const char *name;
  1466. {
  1467.   current.next = NULL;
  1468.   return nlmlex_file_open (name);
  1469. }
  1470.  
  1471. /* Start the lexer going on a subsidiary input file.  */
  1472.  
  1473. static void
  1474. nlmlex_file_push (name)
  1475.      const char *name;
  1476. {
  1477.   struct input *push;
  1478.  
  1479.   push = (struct input *) xmalloc (sizeof (struct input));
  1480.   *push = current;
  1481.   if (nlmlex_file_open (name))
  1482.     current.next = push;
  1483.   else
  1484.     {
  1485.       current = *push;
  1486.       free (push);
  1487.     }
  1488. }
  1489.  
  1490. /* Start lexing from a file.  */
  1491.  
  1492. static boolean
  1493. nlmlex_file_open (name)
  1494.      const char *name;
  1495. {
  1496.   current.file = fopen (name, "r");
  1497.   if (current.file == NULL)
  1498.     {
  1499.       fprintf (stderr, "%s:%s: %s\n", program_name, name, strerror (errno));
  1500.       ++parse_errors;
  1501.       return false;
  1502.     }
  1503.   current.name = xstrdup (name);
  1504.   current.lineno = 1;
  1505.   current.state = BEGINNING_OF_LINE;
  1506.   return true;
  1507. }
  1508.  
  1509. /* Table used to turn keywords into tokens.  */
  1510.  
  1511. struct keyword_tokens_struct
  1512. {
  1513.   const char *keyword;
  1514.   int token;
  1515. };
  1516.  
  1517. struct keyword_tokens_struct keyword_tokens[] =
  1518. {
  1519.   { "CHECK", CHECK },
  1520.   { "CODESTART", CODESTART },
  1521.   { "COPYRIGHT", COPYRIGHT },
  1522.   { "CUSTOM", CUSTOM },
  1523.   { "DATE", DATE },
  1524.   { "DEBUG", DEBUG },
  1525.   { "DESCRIPTION", DESCRIPTION },
  1526.   { "EXIT", EXIT },
  1527.   { "EXPORT", EXPORT },
  1528.   { "FLAG_ON", FLAG_ON },
  1529.   { "FLAG_OFF", FLAG_OFF },
  1530.   { "FULLMAP", FULLMAP },
  1531.   { "HELP", HELP },
  1532.   { "IMPORT", IMPORT },
  1533.   { "INPUT", INPUT },
  1534.   { "MAP", MAP },
  1535.   { "MESSAGES", MESSAGES },
  1536.   { "MODULE", MODULE },
  1537.   { "MULTIPLE", MULTIPLE },
  1538.   { "OS_DOMAIN", OS_DOMAIN },
  1539.   { "OUTPUT", OUTPUT },
  1540.   { "PSEUDOPREEMPTION", PSEUDOPREEMPTION },
  1541.   { "REENTRANT", REENTRANT },
  1542.   { "SCREENNAME", SCREENNAME },
  1543.   { "SHARELIB", SHARELIB },
  1544.   { "STACK", STACK },
  1545.   { "STACKSIZE", STACK },
  1546.   { "START", START },
  1547.   { "SYNCHRONIZE", SYNCHRONIZE },
  1548.   { "THREADNAME", THREADNAME },
  1549.   { "TYPE", TYPE },
  1550.   { "VERBOSE", VERBOSE },
  1551.   { "VERSION", VERSION },
  1552.   { "XDCDATA", XDCDATA }
  1553. };
  1554.  
  1555. #define KEYWORD_COUNT (sizeof (keyword_tokens) / sizeof (keyword_tokens[0]))
  1556.  
  1557. /* The lexer accumulates strings in these variables.  */
  1558. static char *lex_buf;
  1559. static int lex_size;
  1560. static int lex_pos;
  1561.  
  1562. /* Start accumulating strings into the buffer.  */
  1563. #define BUF_INIT() \
  1564.   ((void) (lex_buf != NULL ? lex_pos = 0 : nlmlex_buf_init ()))
  1565.  
  1566. static int
  1567. nlmlex_buf_init ()
  1568. {
  1569.   lex_size = 10;
  1570.   lex_buf = xmalloc (lex_size + 1);
  1571.   lex_pos = 0;
  1572.   return 0;
  1573. }
  1574.  
  1575. /* Finish a string in the buffer.  */
  1576. #define BUF_FINISH() ((void) (lex_buf[lex_pos] = '\0'))
  1577.  
  1578. /* Accumulate a character into the buffer.  */
  1579. #define BUF_ADD(c) \
  1580.   ((void) (lex_pos < lex_size \
  1581.        ? lex_buf[lex_pos++] = (c) \
  1582.        : nlmlex_buf_add (c)))
  1583.  
  1584. static char
  1585. nlmlex_buf_add (c)
  1586.      int c;
  1587. {
  1588.   if (lex_pos >= lex_size)
  1589.     {
  1590.       lex_size *= 2;
  1591.       lex_buf = xrealloc (lex_buf, lex_size + 1);
  1592.     }
  1593.  
  1594.   return lex_buf[lex_pos++] = c;
  1595. }
  1596.  
  1597. /* The lexer proper.  This is called by the bison generated parsing
  1598.    code.  */
  1599.  
  1600. static int
  1601. yylex ()
  1602. {
  1603.   int c;
  1604.  
  1605. tail_recurse:
  1606.  
  1607.   c = getc (current.file);
  1608.  
  1609.   /* Commas are treated as whitespace characters.  */
  1610.   while (isspace ((unsigned char) c) || c == ',')
  1611.     {
  1612.       current.state = IN_LINE;
  1613.       if (c == '\n')
  1614.     {
  1615.       ++current.lineno;
  1616.       current.state = BEGINNING_OF_LINE;
  1617.     }
  1618.       c = getc (current.file);
  1619.     }
  1620.  
  1621.   /* At the end of the file we either pop to the previous file or
  1622.      finish up.  */
  1623.   if (c == EOF)
  1624.     {
  1625.       fclose (current.file);
  1626.       free (current.name);
  1627.       if (current.next == NULL)
  1628.     return 0;
  1629.       else
  1630.     {
  1631.       struct input *next;
  1632.  
  1633.       next = current.next;
  1634.       current = *next;
  1635.       free (next);
  1636.       goto tail_recurse;
  1637.     }
  1638.     }
  1639.  
  1640.   /* A comment character always means to drop everything until the
  1641.      next newline.  */
  1642.   if (c == COMMENT_CHAR)
  1643.     {
  1644.       do
  1645.     {
  1646.       c = getc (current.file);
  1647.     }
  1648.       while (c != '\n');
  1649.       ++current.lineno;
  1650.       current.state = BEGINNING_OF_LINE;
  1651.       goto tail_recurse;
  1652.     }
  1653.  
  1654.   /* An '@' introduces an include file.  */
  1655.   if (c == '@')
  1656.     {
  1657.       do
  1658.     {
  1659.       c = getc (current.file);
  1660.       if (c == '\n')
  1661.         ++current.lineno;
  1662.     }
  1663.       while (isspace ((unsigned char) c));
  1664.       BUF_INIT ();
  1665.       while (! isspace ((unsigned char) c) && c != EOF)
  1666.     {
  1667.       BUF_ADD (c);
  1668.       c = getc (current.file);
  1669.     }
  1670.       BUF_FINISH ();
  1671.  
  1672.       ungetc (c, current.file);
  1673.       
  1674.       nlmlex_file_push (lex_buf);
  1675.       goto tail_recurse;
  1676.     }
  1677.  
  1678.   /* A non-space character at the start of a line must be the start of
  1679.      a keyword.  */
  1680.   if (current.state == BEGINNING_OF_LINE)
  1681.     {
  1682.       BUF_INIT ();
  1683.       while (isalnum ((unsigned char) c) || c == '_')
  1684.     {
  1685.       if (islower ((unsigned char) c))
  1686.         BUF_ADD (toupper ((unsigned char) c));
  1687.       else
  1688.         BUF_ADD (c);
  1689.       c = getc (current.file);
  1690.     }
  1691.       BUF_FINISH ();
  1692.  
  1693.       if (c != EOF && ! isspace ((unsigned char) c) && c != ',')
  1694.     {
  1695.       nlmheader_identify ();
  1696.       fprintf (stderr, "%s:%d: illegal character in keyword: %c\n",
  1697.            current.name, current.lineno, c);
  1698.     }
  1699.       else
  1700.     {
  1701.       int i;
  1702.  
  1703.       for (i = 0; i < KEYWORD_COUNT; i++)
  1704.         {
  1705.           if (lex_buf[0] == keyword_tokens[i].keyword[0]
  1706.           && strcmp (lex_buf, keyword_tokens[i].keyword) == 0)
  1707.         {
  1708.           /* Pushing back the final whitespace avoids worrying
  1709.              about \n here.  */
  1710.           ungetc (c, current.file);
  1711.           current.state = IN_LINE;
  1712.           return keyword_tokens[i].token;
  1713.         }
  1714.         }
  1715.       
  1716.       nlmheader_identify ();
  1717.       fprintf (stderr, "%s:%d: unrecognized keyword: %s\n",
  1718.            current.name, current.lineno, lex_buf);
  1719.     }
  1720.  
  1721.       ++parse_errors;
  1722.       /* Treat the rest of this line as a comment.  */
  1723.       ungetc (COMMENT_CHAR, current.file);
  1724.       goto tail_recurse;
  1725.     }
  1726.  
  1727.   /* Parentheses just represent themselves.  */
  1728.   if (c == '(' || c == ')')
  1729.     return c;
  1730.  
  1731.   /* Handle quoted strings.  */
  1732.   if (c == '"' || c == '\'')
  1733.     {
  1734.       int quote;
  1735.       int start_lineno;
  1736.  
  1737.       quote = c;
  1738.       start_lineno = current.lineno;
  1739.  
  1740.       c = getc (current.file);
  1741.       BUF_INIT ();
  1742.       while (c != quote && c != EOF)
  1743.     {
  1744.       BUF_ADD (c);
  1745.       if (c == '\n')
  1746.         ++current.lineno;
  1747.       c = getc (current.file);
  1748.     }
  1749.       BUF_FINISH ();
  1750.  
  1751.       if (c == EOF)
  1752.     {
  1753.       nlmheader_identify ();
  1754.       fprintf (stderr, "%s:%d: end of file in quoted string\n",
  1755.            current.name, start_lineno);
  1756.       ++parse_errors;
  1757.     }
  1758.  
  1759.       /* FIXME: Possible memory leak.  */
  1760.       yylval.string = xstrdup (lex_buf);
  1761.       return QUOTED_STRING;
  1762.     }
  1763.  
  1764.   /* Gather a generic argument.  */
  1765.   BUF_INIT ();
  1766.   while (! isspace (c)
  1767.      && c != ','
  1768.      && c != COMMENT_CHAR
  1769.      && c != '('
  1770.      && c != ')')
  1771.     {
  1772.       BUF_ADD (c);
  1773.       c = getc (current.file);
  1774.     }
  1775.   BUF_FINISH ();
  1776.  
  1777.   ungetc (c, current.file);
  1778.  
  1779.   /* FIXME: Possible memory leak.  */
  1780.   yylval.string = xstrdup (lex_buf);
  1781.   return STRING;
  1782. }
  1783.  
  1784. /* Get a number from a string.  */
  1785.  
  1786. static long
  1787. nlmlex_get_number (s)
  1788.      const char *s;
  1789. {
  1790.   long ret;
  1791.   char *send;
  1792.  
  1793.   ret = strtol (s, &send, 10);
  1794.   if (*send != '\0')
  1795.     nlmheader_warn ("bad number", -1);
  1796.   return ret;
  1797. }
  1798.  
  1799. /* Prefix the nlmconv warnings with a note as to where they come from.
  1800.    We don't use program_name on every warning, because then some
  1801.    versions of the emacs next-error function can't recognize the line
  1802.    number.  */
  1803.  
  1804. static void
  1805. nlmheader_identify ()
  1806. {
  1807.   static int done;
  1808.  
  1809.   if (! done)
  1810.     {
  1811.       fprintf (stderr, "%s: problems in NLM command language input:\n",
  1812.            program_name);
  1813.       done = 1;
  1814.     }
  1815. }
  1816.  
  1817. /* Issue a warning.  */
  1818.  
  1819. static void
  1820. nlmheader_warn (s, imax)
  1821.      const char *s;
  1822.      int imax;
  1823. {
  1824.   nlmheader_identify ();
  1825.   fprintf (stderr, "%s:%d: %s", current.name, current.lineno, s);
  1826.   if (imax != -1)
  1827.     fprintf (stderr, " (max %d)", imax);
  1828.   fprintf (stderr, "\n");
  1829. }
  1830.  
  1831. /* Report an error.  */
  1832.  
  1833. static void
  1834. nlmheader_error (s)
  1835.      const char *s;
  1836. {
  1837.   nlmheader_warn (s, -1);
  1838.   ++parse_errors;
  1839. }
  1840.  
  1841. /* Add a string to a string list.  */
  1842.  
  1843. static struct string_list *
  1844. string_list_cons (s, l)
  1845.      char *s;
  1846.      struct string_list *l;
  1847. {
  1848.   struct string_list *ret;
  1849.  
  1850.   ret = (struct string_list *) xmalloc (sizeof (struct string_list));
  1851.   ret->next = l;
  1852.   ret->string = s;
  1853.   return ret;
  1854. }
  1855.  
  1856. /* Append a string list to another string list.  */
  1857.  
  1858. static struct string_list *
  1859. string_list_append (l1, l2)
  1860.      struct string_list *l1;
  1861.      struct string_list *l2;
  1862. {
  1863.   register struct string_list **pp;
  1864.  
  1865.   for (pp = &l1; *pp != NULL; pp = &(*pp)->next)
  1866.     ;
  1867.   *pp = l2;
  1868.   return l1;
  1869. }
  1870.  
  1871. /* Append a string to a string list.  */
  1872.  
  1873. static struct string_list *
  1874. string_list_append1 (l, s)
  1875.      struct string_list *l;
  1876.      char *s;
  1877. {
  1878.   struct string_list *n;
  1879.   register struct string_list **pp;
  1880.  
  1881.   n = (struct string_list *) xmalloc (sizeof (struct string_list));
  1882.   n->next = NULL;
  1883.   n->string = s;
  1884.   for (pp = &l; *pp != NULL; pp = &(*pp)->next)
  1885.     ;
  1886.   *pp = n;
  1887.   return l;
  1888. }
  1889.  
  1890. /* Duplicate a string in memory.  */
  1891.  
  1892. static char *
  1893. xstrdup (s)
  1894.      const char *s;
  1895. {
  1896.   unsigned long len;
  1897.   char *ret;
  1898.  
  1899.   len = strlen (s);
  1900.   ret = xmalloc (len + 1);
  1901.   strcpy (ret, s);
  1902.   return ret;
  1903. }
  1904.